home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / utopia-1.0.tar.gz / utopia-1.0.tar / utopia-1.0 / Makefile < prev    next >
Makefile  |  1993-05-15  |  724b  |  39 lines

  1. # Makefile for the Utopia fonts.
  2.  
  3. version = 1.0
  4.  
  5. AFM2TFM = afm2tfm
  6. VPTOVF = vptovf
  7.  
  8. .PRECIOUS: %.vpl
  9.  
  10. tfm_files = putr.tfm putri.tfm putb.tfm putbi.tfm putrc.tfm
  11.  
  12. all: $(tfm_files)
  13.  
  14. # Make the raw TFM file as well as the VPL file.
  15. %.vpl: %.afm
  16.     $(AFM2TFM) $< -v $@ r$*
  17.  
  18. putrc.vpl:
  19.     $(AFM2TFM) putr -V putrc.vpl rputr
  20.  
  21. # Make the VF file as well as the TFM file.
  22. %.tfm: %.vpl
  23.     $(VPTOVF) $< $*.vf $@
  24.  
  25. distclean clean mostlyclean:
  26.     rm -f *.dvi *.log *.vpl *.ps
  27.  
  28. realclean: distclean
  29.     rm -f *.vf *.tfm
  30.  
  31. dist_files = ChangeLog Makefile README psfonts.add *.tfm *.vf *.afm *.pfa
  32. distdir = utopia-$(version)
  33. dist:
  34.     rm -rf $(distdir)
  35.     mkdir $(distdir)
  36.     ln $(dist_files) $(distdir)
  37.     tar czf $(distdir). $(distdir)
  38.     rm -rf $(distdir)
  39.